POST.RUN_SILENT Function

Syntax

Code_Text as C = post.run_silent(C layoutname [,C master_table_filter [,C transaction_table_filter [,L silent [,* arguments ]]]])

Arguments

layoutname

The name of a previously created post operation.

master_table_filter

Optional. Default = "". A filter expression that selects records from the master table.

transaction_table_filter

Optional. Default = "". A filter expression that selects records from the transaction table.

silent

Logical

arguments

*

Description

Runs a Post operation without displaying any confirmation dialog boxes

Discussion

The POST.RUN_SILENT() method runs a previously defined post operation.

Example

The following example runs the saved Customer Post operation.

post.run("Customer Post", "Lastname > 'A'", "Invoice_Number > 10")

Limitations

Desktop applications only.

See Also